* process.c (sigchld_handler): Add cast, to avoid warnings on Linux.
authorJim Blandy <jimb@redhat.com>
Wed, 9 Jun 1993 12:30:13 +0000 (12:30 +0000)
committerJim Blandy <jimb@redhat.com>
Wed, 9 Jun 1993 12:30:13 +0000 (12:30 +0000)
src/process.c

index d0beafe6ad9931e5913a20c3bcd2949e66a3454e..d661aa92425cd675b3309a5802e0e8e055425d07 100644 (file)
@@ -2819,7 +2819,7 @@ sigchld_handler (signo)
            synch_process_retcode = WRETCODE (w);
          else if (WIFSIGNALED (w))
 #ifndef VMS
-           synch_process_death = sys_siglist[WTERMSIG (w)];
+           synch_process_death = (char *) sys_siglist[WTERMSIG (w)];
 #else
            synch_process_death = sys_errlist[WTERMSIG (w)];
 #endif